home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWButton.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  691 b   |  29 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface WWButton:Button
  5. {
  6. }
  7.  
  8. + initialize;
  9. + setCellClass:classID;
  10.  
  11. - initFrame:(const NXRect *)frameRect 
  12.             icon:(const char *)aString tag:(int)anInt 
  13.             target:anObject action:(SEL)aSelector 
  14.             key:(unsigned short)charCode enabled:(BOOL)flag;
  15. - initFrame:(const NXRect *)frameRect 
  16.             title:(const char *)aString tag:(int)anInt 
  17.             target:anObject action:(SEL)aSelector 
  18.             key:(unsigned short)charCode enabled:(BOOL)flag;
  19. - init;
  20. - setTclVar:(const char *)str;
  21. - (const char *)tclVar;
  22. - setTclExpression:(const char *)str;
  23. - (const char *)tclExpression;
  24.  
  25. - (const char *)getInspectorClassName;
  26.  
  27.  
  28. @end
  29.